home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / vbcc.lha / vbcc / machines / amiga68k / include / setjmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  127 b   |  11 lines

  1. #ifndef __SETJMP_H
  2. #define __SETJMP_H 1
  3.  
  4. typedef int jmp_buf[13];
  5.  
  6. int setjmp (jmp_buf);
  7. void longjmp (jmp_buf, int);
  8.  
  9. #endif
  10.  
  11.